/*
#site_map {
	padding-left: 30px;
}

ul.navigation li {
	list-style-type:disc;
}

ul.navigation ul {
    font-size: 100%;
    margin: 4px 0 4px 20px;
}*/




.content-data {
	float:none;
}

/* -------------------------------------- */

#site_map ul{
	/*counter-reset: li;*/
	list-style: none;
/*	*list-style: decimal;*/
	font: 15px 'arial';
	padding: 0;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

#site_map li {
	line-height: 1;
    margin: auto;
}

#site_map ul ul{
	margin: 0 0 0 2em;
}

/* -------------------------------------- */	


/* -------------------------------------- */

#site_map ul a{
	position: relative;
	display: block;
	padding: .4em .4em .4em .8em;
	*padding: .4em;
	margin: .5em 0 .5em 2.5em;
	background: #ddd;
	color: #444;
	text-decoration: none;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;	
}

#site_map ul a:hover{
	background: #eee;
}	

#site_map ul a:before{
/*				content: counter(li);
	counter-increment: li;*/
	content: "\25B8 ";
	position: absolute;	
	left: -2.5em;
	top: 50%;
	margin-top: -1em;
	background: #87ceeb;
	height: 2em;
	width: 2em;
	line-height: 2em;
	text-align: center;
	font-weight: bold;
}

#site_map ul a:after{
	position: absolute;	
	content: '';
	border: .5em solid transparent;
	left: -1em;
	top: 50%;
	margin-top: -.5em;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;				
}

#site_map ul a:hover:after{
	left: -.5em;
	border-left-color: #87ceeb;				
}